翻訳と辞書
Words near each other
・ MODDERN Cures Act
・ Modderpoort
・ Modderpoort Dam
・ Modderpoort Sacred Sites
・ Moddershall
・ Modderspruit
・ Moddey Dhoo
・ Moddi
・ Modding
・ Modding in Grand Theft Auto
・ Mode
・ Mode (computer interface)
・ Mode (literature)
・ MODE (magazine)
・ Mode (music)
Mode (statistics)
・ Mode 1
・ Mode 13h
・ Mode 2
・ Mode 3
・ Mode 3 (telephone)
・ Mode 7
・ Mode 7 (disambiguation)
・ Mode 9
・ Mode C veil
・ Mode choice
・ Mode control panel
・ Mode coupling
・ Mode deactivation therapy
・ Mode dial


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Mode (statistics) : ウィキペディア英語版
Mode (statistics)

The mode is the value that appears most often in a set of data. The mode of a discrete probability distribution is the value ''x'' at which its probability mass function takes its maximum value. In other words, it is the value that is most likely to be sampled. The mode of a continuous probability distribution is the value ''x'' at which its probability density function has its maximum value, so the mode is at the peak.
Like the statistical mean and median, the mode is a way of expressing, in a single number, important information about a random variable or a population. The numerical value of the mode is the same as that of the mean and median in a normal distribution, and it may be very different in highly skewed distributions.
The mode is not necessarily unique, since the probability mass function or probability density function may take the same maximum value at several points ''x''1, ''x''2, etc. The most extreme case occurs in uniform distributions, where all values occur equally frequently. When a probability density function has multiple local maxima it is common to refer to all of the local maxima as modes of the distribution. Such a continuous distribution is called multimodal (as opposed to unimodal).
In symmetric unimodal distributions, such as the normal distribution, the mean (if defined), median and mode all coincide. For samples, if it is known that they are drawn from a symmetric distribution, the sample mean can be used as an estimate of the population mode.
==Mode of a sample==

The mode of a sample is the element that occurs most often in the collection. For example, the mode of the sample (3, 6, 6, 6, 6, 7, 7, 12, 12, 17 ) is 6. Given the list of data (1, 2, 4, 4 ) the mode is not unique - the dataset may be said to be bimodal, while a set with more than two modes may be described as multimodal.
For a sample from a continuous distribution, such as (1.211..., 2.430..., 3.668..., 3.874... ), the concept is unusable in its raw form, since no two values will be exactly the same, so each value will occur precisely once. In order to estimate the mode, the usual practice is to discretize the data by assigning frequency values to intervals of equal distance, as for making a histogram, effectively replacing the values by the midpoints of the
intervals they are assigned to. The mode is then the value where the histogram reaches its peak. For small or middle-sized samples the outcome of this procedure is sensitive to the choice of interval width if chosen too narrow or too wide; typically one should have a sizable fraction of the data concentrated in a relatively small number of intervals (5 to 10), while the fraction of the data falling outside these intervals is also sizable. An alternate approach is kernel density estimation, which essentially blurs point samples to produce a continuous estimate of the probability density function which can provide an estimate of the mode.
The following MATLAB (or Octave) code example computes the mode of a sample:

X = sort(x);
indices = find(diff((realmax )) > 0); % indices where repeated values change
() = max (diff((indices ))); % longest persistence length of repeated values
mode = X(indices(i));

The algorithm requires as a first step to sort the sample in ascending order. It then computes the discrete derivative of the sorted list, and finds the indices where this derivative is positive. Next it computes the discrete derivative of this set of indices, locating the maximum of this derivative of indices, and finally evaluates the sorted sample at the point where that maximum occurs, which corresponds to the last member of the stretch of repeated values.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Mode (statistics)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.